The <P> element is used to define a paragraph. The exact rendering (indentation, leading etc.) is not defined and may be a function of other tags, style sheets, etc.
ID
An SGML identifier used as the target for hypertext links or for naming particular elements in
associated style sheets. Identifiers are NAME tokens and must be unique within the scope of the current
document.
LANG
This is one of the ISO standard language abbreviations, e.g. "en.uk" for the variety of
English spoken in the United Kingdom. It can be used by parsers to select language specific choices for
quotation marks, ligatures and hyphenation rules. The language attribute is composed from the two letter
language code from ISO 639, optionally followed by a period and a two letter country code from ISO
3166.
CLASS
This a space separated list of SGML NAME tokens and is used to subclass tag names. For instance,
<P CLASS=abstract> defines a paragraph that acts as an abstract. By convention, class names are
interpreted hierarchically, with the most general class on the left and the most specific on the right, where
classes are separated by a period. The CLASS attribute is most commonly used to attach a different style to
some element, but it is recommended that where practical class names should be picked on the basis of the
element's semantics, because this permitsother uses, such as restricting search through documents by
matching on element class names. The conventions for choosing class names are outside the scope of this
document.
ALIGN
Paragraphs are usually rendered flush left. The ALIGN attribute can be used to explicitly specify
the horizontal alignment:
CLEAR
This attribute is common to all block-like elements. When text flows around a figure or table in the
margin, you sometimes want to start an element like a header, paragraph or list below the figure rather than
alongside it. The CLEAR attribute allows you to move down unconditionally:
NOWRAP
The NOWRAP attribute is used when you don't want the browser to automatically wrap lines. You
can then explicitly specify line breaks in paragraphs using the BR element.
<P> is legal within:
<ADDRESS>, <BANNER>, <BODYTEXT>, <DD>, <DIV>,
<FIGTEXT>, <FN>, <FORM>, <LI>, <NOTE>, <TD>, <TH>
The following markup can be used within <P>
<A>, <ABBREV>, <ACRONYM>, <AU>, <B>, <BIG>,
<BR>, <CITE>, <CODE>, <DEL>, <DFN>, <EM>, <I>,
<IMG>, <INS>, <KBD>, <LANG>, <MATH>, <PERSON>, <Q>,
<S>, <SAMP>, <SMALL>, <STRONG>, <SUB>, <SUP>,
<TAB>, <TT>, <U>, <VAR>
One paragraph.<P>
And another.<P>